home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- _root.mojo_lvl = Math.round(mojo);
- mojo_color = new Color(_root.mojolife);
- if(mojo > 100)
- {
- _global.mojo = 100;
- }
- if(mojo <= 0)
- {
- stopAllSounds();
- _global.final_score = _parent.score;
- _parent.gotoAndStop("oops");
- this._xscale = 0;
- setProperty(_root.drag, _visible, false);
- }
- else
- {
- this._xscale = mojo;
- }
- if(mojo < 30)
- {
- mojo_color.setRGB(16711680);
- _parent.low.gotoAndPlay("playlow");
- }
- if(mojo < 60 && mojo > 30)
- {
- mojo_color.setRGB(16750848);
- }
- if(mojo > 60)
- {
- mojo_color.setRGB(6737151);
- }
- }
-